home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form3
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Dialog
- Caption = "You have WON!"
- ClientHeight = 3195
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 4680
- ControlBox = 0 'False
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3195
- ScaleWidth = 4680
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Timer Timer1
- Interval = 100
- Left = 840
- Top = 480
- End
- Begin VB.CommandButton Command2
- BackColor = &H00FF00FF&
- Caption = "&Cancel"
- Height = 375
- Left = 3360
- Style = 1 'Graphical
- TabIndex = 2
- Top = 2640
- Width = 1215
- End
- Begin VB.CommandButton Command1
- BackColor = &H00FF00FF&
- Caption = "&Play Again"
- Default = -1 'True
- Height = 375
- Left = 120
- Style = 1 'Graphical
- TabIndex = 1
- Top = 2640
- Width = 1215
- End
- Begin VB.Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "You Have Won!"
- BeginProperty Font
- Name = "Comic Sans MS"
- Size = 27.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 765
- Left = 240
- TabIndex = 0
- Top = 1200
- Width = 4005
- End
- Begin VB.Image Image1
- Height = 2985
- Left = 1440
- Picture = "Form3.frx":0000
- Stretch = -1 'True
- Top = 240
- Width = 2370
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Form2.Show
- Form1.lblWord.Caption = ""
- Form1.lblSubject.Caption = ""
- Form1.Enabled = True
- Form2.Enabled = True
- Unload Me
- End Sub
- Private Sub Command2_Click()
- Form1.Enabled = True
- Form2.Enabled = True
- Unload Me
- End Sub
- Private Sub Form_Load()
- Form1.Timer1.Enabled = False
- Form1.Enabled = False
- Form2.Enabled = False
- End Sub
- Private Sub Timer1_Timer()
- Static Timed
- If Timed = 0 Then
- Form3.BackColor = vbBlack
- Timed = 1
- Else
- Form3.BackColor = vbWhite
- Label1.BackColor = vbBlack
- Timed = 0
- End If
- End Sub
-